home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / 32URDOOR.ZIP / EXAMPLE1.BAT < prev    next >
DOS Batch File  |  1994-06-01  |  632b  |  27 lines

  1. REM Example .BAT file to set up a URDooR DooR on a Multi-Line System.
  2. REM
  3. REM Example command line called from BBS Software if dropfile is not used
  4. REM C:\DOORS\URDOOR.BAT /node /ansi /baud /firstname /lastname /comport
  5. REM                     ^^^^   ^^^^  ^^^^  ^^^^       ^^^^      ^^^^
  6. REM                      ||     ||    ||    ||         ||        ||
  7. REM                      %1     %2    %3    %4         %5        %6
  8.  
  9.  
  10. c:
  11. cd\doors\urdoor
  12. goto %1
  13. :1
  14.  urdoor.exe urdoor1.cfg %2 %3 %4 %5 %6
  15.  c:
  16.  cd\bbs\node1
  17.  goto end    
  18. :2
  19.  urdoor.exe urdoor2.cfg %2 %3 %4 %5 %6
  20.  c:
  21.  cd\bbs\node2
  22.  goto end
  23. :end
  24.  
  25.  
  26.  
  27.